home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992…ugust: Hack to the Future / ADC Developer CD (1992-08) (''Hack To The Future'')_iso / Dev.CD 199208.iso / Technical Documentation / DTS Sample Code / Snippets / Platforms & Tools / MacApp / AEGestalt 1.0 / UAEServerCommand.h < prev    next >
Encoding:
Text File  |  1992-07-15  |  518 b   |  27 lines  |  [TEXT/MPS ]

  1. //    UAEServerCommand.h
  2. //     Copyright © 1991-92 Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TAEServerCommand class, used to
  5. //    serve the incoming Apple event with needed information
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __AESERVERCOMMAND__
  11. #define __AESERVERCOMMAND__
  12.  
  13. #ifndef __AEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17. class TAEServerCommand : public TServerCommand
  18. {
  19. public:
  20.     TAEServerCommand();
  21.     virtual pascal void DoIt();
  22. };
  23.  
  24. #endif __AESERVERCOMMAND__
  25.  
  26.  
  27.